home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / FREENET / BRODIE / SMAILB / !SendMail / usr / smail / lib / directors < prev    next >
Text File  |  1995-05-21  |  2KB  |  67 lines

  1.  
  2. # look for a file called .forward (RISC OS: /forward) in the user's home
  3. # directory (specified in /etc/passwd) - if it exists smail forwards the
  4. # message to the address(es) listed in this file
  5. dotforward:
  6.     driver = forwardfile;        # general-purpose forwarding director
  7.     file = ~/.forward        # .forward file in home directories
  8.  
  9.  
  10. # map system aliases (/usr/smail/lib/aliases)
  11. aliases:
  12.     driver = aliasfile,        # general-purpose aliasing director
  13.     -nobody;            # all addresses are associated
  14.                     # with nobody by default, so setting
  15.                     # this is not useful.
  16.     file = aliases
  17.  
  18.  
  19. # ------------------------------------------------------------------
  20. # mailing lists .................................................... 
  21. # ------------------------------------------------------------------
  22.  
  23. # owners of mailing lists have addresses like owner-user@...
  24. # smail expects to find a forward file for each owner in
  25. # /usr/smail/lib/lists/owner
  26. owners:    driver = forwardfile,
  27.     caution,            # flag all addresses with caution
  28.     nobody,                # and then associate the nobody user
  29.     owner = postmaster;        # system V sites may wish to use
  30.                     # o-$user, as owner-$user may be
  31.                     # too long for a 14-char filename.
  32.  
  33.     # map the name of the mailing list to lower case
  34.     prefix = "owner-",
  35.     file = lists/owner/${lc:user}    # lists is under $smail_lib_dir
  36.  
  37. # same for request ...
  38. request: driver = forwardfile,
  39.     caution,            # flag all addresses with caution
  40.     nobody,                # and then associate the nobody user
  41.     owner = postmaster;        # system V sites may wish to use
  42.                     # o-$user, as owner-$user may be
  43.                     # too long for a 14-char filename.
  44.  
  45.     # map the name of the mailing list to lower case
  46.     suffix = "-request",
  47.     file = lists/request/${lc:user}    # lists is under $smail_lib_dir
  48.  
  49.  
  50. # the actual mailing list ...
  51. lists:    driver = forwardfile,
  52.     caution,            # flag all addresses with caution
  53.     nobody,                # and then associate the nobody user
  54.     owner = owner-$user;        # system V sites may wish to use
  55.                     # o-$user, as owner-$user may be
  56.                     # too long for a 14-char filename.
  57.  
  58.     # map the name of the mailing list to lower case
  59.     file = lists/${lc:user}        # lists is under $smail_lib_dir
  60.  
  61.  
  62.  
  63. # if none of the above directors knows the address it could be a local user
  64. user:    driver = user;            # driver to match usernames
  65.     transport = local        # local transport goes to mailboxes
  66.  
  67.